home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000016_chef@via.at_Fri Dec 10 11:55:07 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!npeer.de.kpn-eurorings.net!newsfeed.vmunix.org!newsfeed.stueberl.de!newsfeed.utanet.at!newsfeed01.highway.telekom.at!newsreader01.highway.telekom.at!not-for-mail
  2. From: "Walter Wagner" <chef@via.at>
  3. Newsgroups: comp.protocols.kermit.misc
  4. References: <cp4cc5$gom$1@paperboy.Austria.EU.net> <1102429542.133619.87860@c13g2000cwb.googlegroups.com>
  5. Subject: Re: DIAL Failure: "OK"
  6. Date: Fri, 10 Dec 2004 10:50:00 +0100
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
  10. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
  11. Lines: 85
  12. Message-ID: <41b97165$0$17046$91cee783@newsreader01.highway.telekom.at>
  13. NNTP-Posting-Host: 80.120.137.129
  14. X-Trace: 1102672229 newsreader01.highway.telekom.at 17046 80.120.137.129
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15244
  16.  
  17. Thanks for the Hint!
  18. This gave me motivation to do some further tests, and i found out that the
  19. problem was in my old initialization file which worked for Kermit 6 but not
  20. for Kermit 8.
  21.  
  22. I used the output command to do modem initialization and to set the ISDN MSN
  23. numbers(for callback). The following "kermrcS4" init file worked well with
  24. kermit 6.
  25. (i used this command to start  kermit: kermit -y kermrcS4)
  26. ...
  27. out AT&F\{13}
  28. input 1 OK
  29. out ATZ\{13}
  30. input 1 OK
  31. out AT&o0\{13}
  32. input 1 OK
  33. out AT&L1\{13}
  34. input 1 OK
  35. out AT&ZI0=29\{13}
  36. input 1 OK
  37. out AT&ZI1=29\{13}
  38. input 1 OK
  39. out AT&ZI2=29\{13}
  40. input 1 OK
  41. ...
  42.  
  43. Now I use the "set modem command init-string" instead the "output" command
  44. and this works on Kermit 8.
  45. SET MODEM COMMAND INIT-STRING
  46. AT&FZ&o0&L1&ZI0=29&ZI1=29&ZI2=29&ZI3=29&ZI4=29&ZI6=29\13
  47.  
  48. Sure now the initialization is now done shortly before the dialout happens
  49. and erlier it was done when i started kermit, but this is OK so far.
  50.  
  51. If there is better solution which can do the MSN settings... during kermit
  52. start, then i would prefer it!
  53. Otherwise i let it as it is now.
  54.  
  55. In my opinion the problem is that the zyxel modem is somtimes not
  56. answering(or answering too slow) and then it happens that the OK from a
  57. previous command comes back while dialing. And the result is:
  58. > > ATD56913
  59. > >
  60. > > OK
  61. > > DIAL Failure: 20:50:42:  "OK"
  62. I tried also some other "input" commands, for example: input -1 OK\13\10
  63. and the failure happend rarely but it was not completly solved!
  64. And maybe the reason why my USR Modem is working perfect(also with output
  65. commands), could be because it is an analog modem and there is no need to
  66. set so much MSN numbers.
  67.  
  68. Thanks/Regards
  69. Walter
  70.  
  71.  
  72.  
  73. <JDanSkinner@JDanSkinner.com> schrieb im Newsbeitrag
  74. news:1102429542.133619.87860@c13g2000cwb.googlegroups.com...
  75. > I think you have identified the problem twice.
  76. > First your system works normally with one modem and fails
  77. > with another. Another is a problem!
  78. >
  79. > Second you are not getting "OK" response some times.
  80. > In the clip from your post shown below twice the response was not "ok".
  81. > First the response was a blank (I assume) line. (to ATQ0H0)
  82. > The second was a blank line followed by "ok". That is not "ok".
  83. >
  84. > Walter Wagner wrote:
  85. > > Hello
  86. > > ATQ0H0
  87. > >
  88. > > ATQ0H0
  89. > > OK
  90. > >   Modem hangup OK
  91. > >   Initializing: 20:50:41...
  92. > >   Dialing: 20:50:42...
  93. > > ATD56913
  94. > >
  95. > > OK
  96. > > DIAL Failure: 20:50:42:  "OK"
  97. >
  98. > Regards...Dan.
  99. >
  100.  
  101.